home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / memmove.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  28 lines

  1.  
  2. MEMMOVE(3)                 UNIX Programmer's Manual                 MEMMOVE(3)
  3.  
  4. NNAAMMEE
  5.      mmeemmmmoovvee - copy byte string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _v_o_i_d _*
  11.      mmeemmmmoovvee(_v_o_i_d _*_d_s_t, _c_o_n_s_t _v_o_i_d _*_s_r_c, _s_i_z_e___t _l_e_n)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The mmeemmmmoovvee() function copies _l_e_n bytes from string _s_r_c to string _d_s_t.
  15.      The two strings may overlap; the copy is always done in a non-destructive
  16.      manner.
  17.  
  18. RREETTUURRNN VVAALLUUEESS
  19.      The mmeemmmmoovvee() function returns the original value of _d_s_t.
  20.  
  21. SSEEEE AALLSSOO
  22.      bcopy(3),  memccpy(3),  memcpy(3),  strcpy(3)
  23.  
  24. SSTTAANNDDAARRDDSS
  25.      The mmeemmmmoovvee() function conforms to ANSI C3.159-1989 (``ANSI C'').
  26.  
  27. BSD Experimental                 June 29, 1991                               1
  28.